Column

Gauge ex1. Cintact Rate

Gauge ex2. Average Rating

메모

메모입니다. Test
샵을 세개 쓰면 됨

---
title: "Guage, Navigation Bar & Text Annotation"
output: 
  flexdashboard::flex_dashboard:
    orientation: columns
    source_code: embed
    navbar:
      - { title: "About", href: "https://example.com/about", align: right}
      - { icon: "fa-pencil", href: "https://www.naver.com", align: right}
---

```{r setup, include=FALSE}
library(flexdashboard)
library(ggplot2)
library(knitr)
```

Column {data-width=650}
-----------------------------------------------------------------------

### Gauge ex1. Cintact Rate

```{r}
gauge(45, min = 0, max = 100, symbol = '%',
      sectors = gaugeSectors(success = c(80, 100),
                             warning = c(40, 79),
                             danger = c(0, 39)
))
```

### Gauge ex2. Average Rating

```{r}
rating = 42
gauge(rating, 0, 50, label = 'Test', gaugeSectors(
  success = c(41, 50), warning = c(21, 40), danger = c(0, 20)
))
```

### 메모
메모입니다. Test  
샵을 세개 쓰면 됨